home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / libcs / atot.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  3KB  |  87 lines

  1. /*
  2.  * Copyright (c) 1990 Carnegie Mellon University
  3.  * All Rights Reserved.
  4.  * 
  5.  * Permission to use, copy, modify and distribute this software and its
  6.  * documentation is hereby granted, provided that both the copyright
  7.  * notice and this permission notice appear in all copies of the
  8.  * software, derivative works or modified versions, and any portions
  9.  * thereof, and that both notices appear in supporting documentation.
  10.  *
  11.  * THE SOFTWARE IS PROVIDED "AS IS" AND CARNEGIE MELLON UNIVERSITY
  12.  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT
  14.  * SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, DIRECT,
  15.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  16.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  17.  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  18.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.  *
  20.  * Users of this software agree to return to Carnegie Mellon any
  21.  * improvements or extensions that they make and grant Carnegie the
  22.  * rights to redistribute these changes.
  23.  *
  24.  * Export of this software is permitted only after complying with the
  25.  * regulations of the U.S. Deptartment of Commerce relating to the
  26.  * Export of Technical Data.
  27.  */
  28. /*
  29.  *  atot - convert ascii string to time
  30.  *
  31.  **********************************************************************
  32.  * HISTORY
  33.  * $Log:    atot.c,v $
  34.  * Revision 1.2  90/12/11  17:50:25  mja
  35.  *     Add copyright/disclaimer for distribution.
  36.  * 
  37.  * 09-Oct-85  Glenn Marcy (gm0w) at Carnegie-Mellon University
  38.  *    Fixed previous edit.  Need to zero time fields of tm struct
  39.  *    after parsedate() because it sets them to -1, which is
  40.  *    considered bad form by gtime().
  41.  *
  42.  * 30-Apr-85  Steven Shafer (sas) at Carnegie-Mellon University
  43.  *    Adapted for 4.2 BSD UNIX.  Changed to new timeval struct, use
  44.  *    gettimeofday(), and new parsedate().
  45.  *
  46.  * 03-Jan-80  Mike Accetta (mja) at Carnegie-Mellon University
  47.  *    Created.
  48.  *
  49.  **********************************************************************
  50.  *
  51.  *  Usage:  t = atot (date);
  52.  *    time_t t;
  53.  *    char *date;
  54.  *
  55.  *     Converts a date string to its corresponding UNIX date/time
  56.  *  format using pdate().  The month, day and year default to
  57.  *  today, hours, minutes and seconds default to 0.
  58.  *
  59.  *     Returns converted time or -1 on error (bad date string).
  60.  */
  61.  
  62. #include <sys/types.h>
  63. #include <sys/time.h>
  64. #include <c.h>
  65. #include <libc.h>
  66.  
  67. extern time_t gtime();
  68.  
  69. time_t atot(str)
  70. char *str;
  71. {
  72.  
  73.     struct timeval now;
  74.     struct timezone zone;
  75.     register struct tm *tm;
  76.  
  77.     gettimeofday (&now,&zone);
  78.     tm = localtime(&now.tv_sec);
  79.     tm->tm_sec = tm->tm_min = tm->tm_hour = 0;
  80.     if (parsedate(str, tm, 1, 0, 0) < 0)
  81.     return(CERROR);
  82.     if (tm->tm_sec == -1 && tm->tm_min == -1 && tm->tm_hour == -1)
  83.     tm->tm_sec = tm->tm_min = tm->tm_hour = 0;
  84.     return(gtime(tm));
  85.  
  86. }
  87.